From 402df1ea826b827f1b81a25dc8a6850b8ec852e1 Mon Sep 17 00:00:00 2001 From: "br260@laudney.cl.cam.ac.uk" Date: Sun, 16 Nov 2003 18:42:19 +0000 Subject: [PATCH] bitkeeper revision 1.605 (3fb7c50bXTDlcELkwn27wbUDu6STOQ) Bug fix. --- xen/common/dom_mem_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/common/dom_mem_ops.c b/xen/common/dom_mem_ops.c index 55cb69ce8c..8f59e10d51 100644 --- a/xen/common/dom_mem_ops.c +++ b/xen/common/dom_mem_ops.c @@ -111,7 +111,7 @@ static long free_dom_mem(struct task_struct *p, reservation_decrease_t op) pf = &frame_table[mpfn]; if ( (pf->type_count != 0) || (pf->tot_count != 0) || - (pf->flags != p->domain) ) + (pf->flags & PG_domain_mask != p->domain) ) { DPRINTK("Bad page free for domain %d (%ld, %ld, %08lx)\n", p->domain, pf->type_count, pf->tot_count, pf->flags); -- 2.30.2